diff options
| author | real-zephex <[email protected]> | 2024-03-29 19:16:58 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-29 19:16:58 +0530 |
| commit | 641e62fd333cd7c3a82c12181eb0d35611c03df7 (patch) | |
| tree | 47c3cbaeb8b64b16bc06843a83bfa151d747f597 /src/app/anime/[id]/loading.jsx | |
| parent | Delete .github/workflows directory (diff) | |
| download | dramalama-641e62fd333cd7c3a82c12181eb0d35611c03df7.tar.xz dramalama-641e62fd333cd7c3a82c12181eb0d35611c03df7.zip | |
fixes and improvements: dramalaam is no longer hosted on koyeb cuz of
high latency issues.
Diffstat (limited to 'src/app/anime/[id]/loading.jsx')
| -rw-r--r-- | src/app/anime/[id]/loading.jsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/app/anime/[id]/loading.jsx b/src/app/anime/[id]/loading.jsx index dfa397c..b5670da 100644 --- a/src/app/anime/[id]/loading.jsx +++ b/src/app/anime/[id]/loading.jsx @@ -1,9 +1,11 @@ -import "./loading.css"; +import styles from "./loading.module.css"; export default function Loading() { return ( - <div className="loadingContainer"> - <p className="text-flicker-in-glow">Loading</p> + <div className={styles.loadingContainer}> + <p className={styles.loadingText}> + Please wait while we load all the data for you. + </p> </div> ); } |